home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacTech 1 to 12
/
MacTech-vol-1-12.toast
/
Source
/
MacTech® Magazine
/
Volume 02 - 1986
/
02.11 Nov 86.sit
/
02.11 Nov 86
/
Gordon's C ok
/
Sources
/
ed.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1986-09-13
|
422 b
|
34 lines
|
[
TEXT/KAHL
]
/*
* ed.h
* definitions for edit functions
*/
#include "quickdraw.h"
#define edFont 0
#define edSize 1
#define edStyle 2
#define Capbit 128
#define Supbit 256
#define Subbit 512
struct edstruct
{
GrafPtr edport;
Rect edrect;
short face[3];
short cface[3];
short supsub;
short linenum;
char cesc;
char chars[1000];
short cndx;
};
typedef struct edstruct edrec;
typedef edrec *edpointer;